white box testing - определение. Что такое white box testing
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое white box testing - определение

METHOD OF SOFTWARE TESTING
Glass-box testing; Glass box testing; Clear box testing; Whitebox testing; White box testing; White box test; Draft:Open box testing
Найдено результатов: 7306
white box testing         
<programming> (Or "clear", "glass", "open") Software testing approaches that examine the program structure and derive test data from the program logic. Structural testing is sometimes referred to as clear-box testing since white boxes are considered opaque and do not really permit visibility into the code. (1996-05-10)
White-box testing         
White-box testing (also known as clear box testing, glass box testing, transparent box testing, and structural testing) is a method of software testing that tests internal structures or workings of an application, as opposed to its functionality (i.e.
clear box testing         
glass box testing         
White box (software engineering)         
SYSTEM WHOSE INTERNALS CAN BE VIEWED BUT NOT ALTERED
White box (engineering); Glass box; Open box
A white box (or glass box, clear box, or open box) is a subsystem whose internals can be viewed but usually not altered.Patrick J.
Gray box testing         
SOFTWARE TESTING
Gray box testing; Grey box testing; Graybox testing; Grey Box Testing; Gray Box Testing; Grey-box testing
Gray-box testing (International English spelling: grey-box testing) is a combination of white-box testing and black-box testing. The aim of this testing is to search for the defects, if any, due to improper structure or improper usage of applications.
Black-box testing         
  • Example of a black box model where a certain input produces a certain output
METHOD OF SOFTWARE TESTING THAT EXAMINES THE FUNCTIONALITY OF AN APPLICATION WITHOUT PEERING INTO ITS INTERNAL STRUCTURES OR WORKINGS
Block box testing; Black box test; Black box testing; Blackbox testing; Black-box test; Open-box testing
Black-box testing is a method of software testing that examines the functionality of an application without peering into its internal structures or workings. This method of test can be applied virtually to every level of software testing: unit, integration, system and acceptance.
black-box testing         
  • Example of a black box model where a certain input produces a certain output
METHOD OF SOFTWARE TESTING THAT EXAMINES THE FUNCTIONALITY OF AN APPLICATION WITHOUT PEERING INTO ITS INTERNAL STRUCTURES OR WORKINGS
Block box testing; Black box test; Black box testing; Blackbox testing; Black-box test; Open-box testing
Usability testing         
TECHNIQUE USED IN USER-CENTERED INTERACTION DESIGN TO EVALUATE A PRODUCT BY TESTING IT ON USERS
Usability study; UI Testing; Usability test; Hallway testing; Hallway usability testing; Usability Testing; User testing; UX testing; User study; User test; Guerrilla usability
Usability testing is a technique used in user-centered interaction design to evaluate a product by testing it on users. This can be seen as an irreplaceable usability practice, since it gives direct input on how real users use the system.
All-pairs testing         
ALSO KNOWN AS PAIRWISE TESTING, A SOFTWARE TESTING METHOD
Combinatorial Interaction Testing; All-pair testing
In computer science, all-pairs testing or pairwise testing is a combinatorial method of software testing that, for each pair of input parameters to a system (typically, a software algorithm), tests all possible discrete combinations of those parameters. Using carefully chosen test vectors, this can be done much faster than an exhaustive search of all combinations of all parameters, by "parallelizing" the tests of parameter pairs.

Википедия

White-box testing

White-box testing (also known as clear box testing, glass box testing, transparent box testing, and structural testing) is a method of software testing that tests internal structures or workings of an application, as opposed to its functionality (i.e. black-box testing). In white-box testing, an internal perspective of the system is used to design test cases. The tester chooses inputs to exercise paths through the code and determine the expected outputs. This is analogous to testing nodes in a circuit, e.g. in-circuit testing (ICT). White-box testing can be applied at the unit, integration and system levels of the software testing process. Although traditional testers tended to think of white-box testing as being done at the unit level, it is used for integration and system testing more frequently today. It can test paths within a unit, paths between units during integration, and between subsystems during a system–level test. Though this method of test design can uncover many errors or problems, it has the potential to miss unimplemented parts of the specification or missing requirements. Where white-box testing is design-driven, that is, driven exclusively by agreed specifications of how each component of software is required to behave (as in DO-178C and ISO 26262 processes), white-box test techniques can accomplish assessment for unimplemented or missing requirements.

White-box test design techniques include the following code coverage criteria:

  • Control flow testing
  • Data flow testing
  • Branch testing
  • Statement coverage
  • Decision coverage
  • Modified condition/decision coverage
  • Prime path testing
  • Path testing